home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / etc / python2.6 / sitecustomize.py
Encoding:
Python Source  |  2009-04-18  |  155 b   |  8 lines

  1. # install the apport exception handler if available
  2. try:
  3.     import apport_python_hook
  4. except ImportError:
  5.     pass
  6. else:
  7.     apport_python_hook.install()
  8.